home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_show / bench1 / fixed_array_bench.e < prev    next >
Text File  |  1997-04-13  |  326b  |  21 lines

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class FIXED_ARRAY_BENCH
  5.  
  6. inherit BENCH;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.   make is
  13.       local
  14.      fixed_array: FIXED_ARRAY[INTEGER];
  15.       do
  16.      !!fixed_array.make(count);
  17.      bench(fixed_array);
  18.       end;
  19.  
  20. end
  21.